-
Re: BUG: dataiku.get_custom_variables() returns Python string instead of dict at lower levels
Hi, As you have proved, the method 'get_custom_variables' will by default return the variable values as strings in the returned dictionary. If you want the values to be typed, call the function with …1 · -
Re: Error when creating a code envieroment with Python 3.6
Hi, The error indicates that Python 3.6 is not installed in your system or DSS cannot find it because it's not in the PATH. Likely the same reason is why this also happens when creating a code-env us…1 · -
Re: If Statements
Hi David, When having more than 5 else ifs on a statement, using a switch case() statement instead becomes a better option due to speed, clarity, etc. (Note this assertion is not DSS specific, but ge…1 · -
Re: Replace some values in a column with values from another column
Hi, Instead of creating a new column, you can specify with the Formula processor in which existing column to save the output. Conversely, you can also use the create-if-then-else-statement processor.1 · -
Re: How to generalize the steps of the prepare recipes
Hi, There are a number of methodologies available for reusing code within DSS. In the context of the Prepare recipe, the most straightforward are: 1) Copy/paste the Prepare steps into other Prepare r…3 ·